home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_753 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2005-09-23  |  413 b   |  18 lines

  1. on(rollOver){
  2.    if(_root.gunupgrade == "None")
  3.    {
  4.       _root.description = "No gun is selected.";
  5.       return undefined;
  6.    }
  7.    if(_root.money >= 125)
  8.    {
  9.       _root.description = "Increase magazine capacity. 125$.";
  10.       return undefined;
  11.    }
  12.    if(_root.money <= 124)
  13.    {
  14.       _root.description = "You can\'t afford to increase your magazine. 125$.";
  15.       return undefined;
  16.    }
  17. }
  18.